home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-07 | 729 b | 25 lines | [TEXT/MPS ] |
- // Copyright © 1995 Apple Computer, Inc. All rights reserved.
- // Release Version: $ 1.0 d8 $
-
- #ifndef CONSTANT_H
- #define CONSTANT_H
-
- //=====================================================================
- // ----- OS Includes -----
- #ifndef FWMNUITM_H
- #include "FWMnuItm.h" // FW_kFirstUserCommandID
- #endif
-
- // ----- OpenDoc Includes -----
- #ifndef _ODTYPES_
- #include <ODTypes.h>
- #endif
-
- //=====================================================================
- const ODCommandID cGreetingCommand = FW_kFirstUserCommandID;
- const ODCommandID cGoodbyeCommand = FW_kFirstUserCommandID + 1;
- const ODCommandID cTestCommand = FW_kFirstUserCommandID + 2;
-
-
- //=====================================================================
- #endif